* {
    padding: 0;
    margin: 0;
}
div {
    height: 100vh;
}
.working {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
}
#left {
    background-image: url('left1650.jpg');
    background-size: cover; /* Adjust the background size to cover the entire div */
  background-position: center; /* Center the background image */
  background-repeat: no-repeat; /* Prevent the background image from repeating */
    
} 
#right {
    background-image: url('right1650.jpeg');
    background-size: cover; /* Adjust the background size to cover the entire div */
  background-position: center; /* Center the background image */
  background-repeat: no-repeat; /* Prevent the background image from repeating */
    
}
.list {
    background-color: #582206;
    color: rgb(245, 245, 245);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    padding: 20px;
    
}
.heading {
    display: flex;
    justify-content:center;
    max-height: 80px;
    font-family: 'Song Myung', serif;
}
 .points {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    margin-top: 5px;
}
a:link {
    color:white;
    font-family: 'Song Myung', serif;
    text-decoration: none;
    
}
a:visited {
    color: white;
    font-family: 'Song Myung', serif;
    text-decoration: none;
}
li {
    
    margin-bottom: 10px;
    margin-left: 100px;
    font-size: 20px;
}
@media (min-width: 1100px) and (max-width: 1650px) {
    #left {
        background-image: url('left1100.jpg');
        background-size: cover; /* Adjust the background size to cover the entire div */
      background-position: center; /* Center the background image */
      background-repeat: no-repeat; /* Prevent the background image from repeating */
        
    } 
    #right {
        background-image: url('right1100.jpg');
        background-size: cover; /* Adjust the background size to cover the entire div */
      background-position: center; /* Center the background image */
      background-repeat: no-repeat; /* Prevent the background image from repeating */
        
    }

}

@media screen and (max-width: 1100px) {
    #left {
       display:none;
        
    }
    #right {
             
        display:none;
    }
    .working {
        grid-template-columns: 1fr;
    }
    .list {
        background-color: #582206;
        color: rgb(245, 245, 245);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content:center;
        padding: 20px;
        
    }
    .heading {
        display: flex;
        justify-content:center;
        max-height: 80px;
        font-family: 'Song Myung', serif;
    }
     .points {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding-top: 0;
        margin-top: 5px;
    }
    a:link {
        color:white;
        font-family: 'Song Myung', serif;
        text-decoration: none;
        
    }
    a:visited {
        color: white;
        font-family: 'Song Myung', serif;
        text-decoration: none;
    }
    li {
        
        margin-bottom: 10px;
        margin-left: 50px;
        font-size: 20px;
    }
  }
